encoding/hex.dumper.buf (field)
22 uses
encoding/hex (current package)
hex.go#L231: buf [14]byte
hex.go#L256: h.buf[0] = byte(h.n >> 24)
hex.go#L257: h.buf[1] = byte(h.n >> 16)
hex.go#L258: h.buf[2] = byte(h.n >> 8)
hex.go#L259: h.buf[3] = byte(h.n)
hex.go#L260: Encode(h.buf[4:], h.buf[:4])
hex.go#L261: h.buf[12] = ' '
hex.go#L262: h.buf[13] = ' '
hex.go#L263: _, err = h.w.Write(h.buf[4:])
hex.go#L268: Encode(h.buf[:], data[i:i+1])
hex.go#L269: h.buf[2] = ' '
hex.go#L273: h.buf[3] = ' '
hex.go#L278: h.buf[3] = ' '
hex.go#L279: h.buf[4] = '|'
hex.go#L282: _, err = h.w.Write(h.buf[:l])
hex.go#L312: h.buf[0] = ' '
hex.go#L313: h.buf[1] = ' '
hex.go#L314: h.buf[2] = ' '
hex.go#L315: h.buf[3] = ' '
hex.go#L316: h.buf[4] = '|'
hex.go#L325: _, err = h.w.Write(h.buf[:l])
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |